{% extends "base.html" %} {% block title %}Doctor Dashboard - Pending Approval{% endblock %} {% block content %}
{% if doctor.appeal_status == 'suspended' %} {% elif doctor.appeal_status == 'rejected' %} {% else %} {% endif %} {% if doctor.appeal_status == 'rejected' %}
Submit Appeal
Appeal Information

Based on the rejection reason above, please make necessary improvements to your profile and documents, then submit an appeal for review.

Appeal Count: {{ doctor.appeal_count }} (You can submit up to 3 appeals)
{% if doctor.appeal_status == 'suspended' %}
Account Suspended: You have reached the maximum number of appeals. Your account is permanently suspended.
{% endif %}
{% if doctor.appeal_status != 'suspended' and doctor.appeal_count < 3 %} Edit & Submit Appeal {% else %} {% endif %}
{% endif %}
Profile Status
{% if doctor.is_approved %} {% else %} {% endif %}
Approval Status
{% if doctor.is_approved %}Approved{% else %}Pending Review{% endif %}
{% if doctor.is_verified %} {% else %} {% endif %}
Verification Status
{% if doctor.is_verified %}Verified{% else %}Not Verified{% endif %}
Profile Information

{{ doctor.user.name }}

{{ doctor.user.email }}

{{ doctor.user.phone|format_phone }}

{{ doctor.specialization }}

{{ doctor.experience }} years

{{ doctor.pmc_code }}

{{ doctor.city }}, {{ doctor.location }}

All Actions
{% endblock %}